home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form frminfo
- Caption = "FYI"
- ClientHeight = 4116
- ClientLeft = 876
- ClientTop = 1524
- ClientWidth = 7236
- ClipControls = 0 'False
- Height = 4536
- Left = 828
- LinkTopic = "Form3"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4116
- ScaleWidth = 7236
- Top = 1152
- Width = 7332
- Begin ListBox lstinfo
- Height = 1560
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 3492
- End
- Option Explicit
- Sub Form_Load ()
- Dim i As Integer
- Width = frmmain.Width * .7
- Height = frmmain.Height * .7
- left = (screen.Width - Width) / 2
- top = (screen.Height - Height) / 2
- Form_resize
- For i = 1 To GetNumLines()
- lstinfo.AddItem fixstr(GetLine(i))
- Next i
- End Sub
- Sub Form_resize ()
- lstinfo.Width = frminfo.ScaleWidth
- lstinfo.Height = frminfo.ScaleHeight
- End Sub
-